projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d3e2c88
)
Fix display of boxed header-line
author
Eli Zaretskii
<eliz@gnu.org>
Thu, 9 Apr 2020 13:38:02 +0000
(16:38 +0300)
committer
Eli Zaretskii
<eliz@gnu.org>
Thu, 9 Apr 2020 13:38:02 +0000
(16:38 +0300)
* src/xdisp.c (init_iterator): Set IT->face_box_p flag for a boxed
mode/header/tab line. (Bug#40521)
src/xdisp.c
patch
|
blob
|
history
diff --git
a/src/xdisp.c
b/src/xdisp.c
index cbdef7ad11821f54efc247f33d07a04f670c26e4..193cc372b0e5694dbcd6b8e3efa862f7ffee443a 100644
(file)
--- a/
src/xdisp.c
+++ b/
src/xdisp.c
@@
-3218,7
+3218,10
@@
init_iterator (struct it *it, struct window *w,
with a left box line. */
face = FACE_FROM_ID_OR_NULL (it->f, remapped_base_face_id);
if (face && face->box != FACE_NO_BOX)
- it->start_of_box_run_p = true;
+ {
+ it->face_box_p = true;
+ it->start_of_box_run_p = true;
+ }
}
/* If a buffer position was specified, set the iterator there,